From ae285834f7c15b548835111a8bcf5ed83f40ac35 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 28 Dec 2007 15:18:32 +0000 Subject: [PATCH] Fix the default value of enable-arrows-always svn path=/trunk/; revision=19270 --- ChangeLog | 5 +++++ gtk/gtkcombo.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 85d718d674..5844db235d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-12-28 Matthias Clasen + + * gtk/gtkcombo.c: Fix the default value of the enable-arrows-always + property. + 2007-12-28 Johan Dahlin * gtk/gtkdialog.c (gtk_dialog_buildable_custom_finished) diff --git a/gtk/gtkcombo.c b/gtk/gtkcombo.c index 75123a2a84..ee90134db0 100644 --- a/gtk/gtkcombo.c +++ b/gtk/gtkcombo.c @@ -911,7 +911,7 @@ gtk_combo_init (GtkCombo * combo) combo->value_in_list = FALSE; combo->ok_if_empty = TRUE; combo->use_arrows = TRUE; - combo->use_arrows_always = FALSE; + combo->use_arrows_always = TRUE; combo->entry = gtk_entry_new (); combo->button = gtk_button_new (); combo->current_button = 0; -- 2.30.2